home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / php5.ini < prev    next >
INI File  |  2005-06-12  |  44KB  |  1,211 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;;;;;;;;;
  4. ; About this file ;
  5. ;;;;;;;;;;;;;;;;;;;
  6. ;
  7. ; This is the recommended, PHP 4-style version of the php.ini-dist file.  It
  8. ; sets some non standard settings, that make PHP more efficient, more secure,
  9. ; and encourage cleaner coding.
  10. ; The price is that with these settings, PHP may be incompatible with some
  11. ; applications, and sometimes, more difficult to develop with.  Using this
  12. ; file is warmly recommended for production sites.  As all of the changes from
  13. ; the standard settings are thoroughly documented, you can go over each one,
  14. ; and decide whether you want to use it or not.
  15. ;
  16. ; For general information about the php.ini file, please consult the php.ini-dist
  17. ; file, included in your PHP distribution.
  18. ;
  19. ; This file is different from the php.ini-dist file in the fact that it features
  20. ; different values for several directives, in order to improve performance, while
  21. ; possibly breaking compatibility with the standard out-of-the-box behavior of
  22. ; PHP 3.  Please make sure you read what's different, and modify your scripts
  23. ; accordingly, if you decide to use this file instead.
  24. ;
  25. ; - register_globals = Off         [Security, Performance]
  26. ;     Global variables are no longer registered for input data (POST, GET, cookies,
  27. ;     environment and other server variables).  Instead of using $foo, you must use
  28. ;     you can use $_REQUEST["foo"] (includes any variable that arrives through the
  29. ;     request, namely, POST, GET and cookie variables), or use one of the specific
  30. ;     $_GET["foo"], $_POST["foo"], $_COOKIE["foo"] or $_FILES["foo"], depending
  31. ;     on where the input originates.  Also, you can look at the
  32. ;     import_request_variables() function.
  33. ;     Note that register_globals is going to be depracated (i.e., turned off by
  34. ;     default) in the next version of PHP, because it often leads to security bugs.
  35. ;     Read http://php.net/manual/en/security.registerglobals.php for further
  36. ;     information.
  37. ; - display_errors = Off           [Security]
  38. ;     With this directive set to off, errors that occur during the execution of
  39. ;     scripts will no longer be displayed as a part of the script output, and thus,
  40. ;     will no longer be exposed to remote users.  With some errors, the error message
  41. ;     content may expose information about your script, web server, or database
  42. ;     server that may be exploitable for hacking.  Production sites should have this
  43. ;     directive set to off.
  44. ; - log_errors = On                [Security]
  45. ;     This directive complements the above one.  Any errors that occur during the
  46. ;     execution of your script will be logged (typically, to your server's error log,
  47. ;     but can be configured in several ways).  Along with setting display_errors to off,
  48. ;     this setup gives you the ability to fully understand what may have gone wrong,
  49. ;     without exposing any sensitive information to remote users.
  50. ; - output_buffering = 4096        [Performance]
  51. ;     Set a 4KB output buffer.  Enabling output buffering typically results in less
  52. ;     writes, and sometimes less packets sent on the wire, which can often lead to
  53. ;     better performance.  The gain this directive actually yields greatly depends
  54. ;     on which Web server you're working with, and what kind of scripts you're using.
  55. ; - register_argc_argv = Off       [Performance]
  56. ;     Disables registration of the somewhat redundant $argv and $argc global
  57. ;     variables.
  58. ; - magic_quotes_gpc = Off         [Performance]
  59. ;     Input data is no longer escaped with slashes so that it can be sent into
  60. ;     SQL databases without further manipulation.  Instead, you should use the
  61. ;     function addslashes() on each input element you wish to send to a database.
  62. ; - variables_order = "GPCS"       [Performance]
  63. ;     The environment variables are not hashed into the $HTTP_ENV_VARS[].  To access
  64. ;     environment variables, you can use getenv() instead.
  65. ; - error_reporting = E_ALL        [Code Cleanliness, Security(?)]
  66. ;     By default, PHP surpresses errors of type E_NOTICE.  These error messages
  67. ;     are emitted for non-critical errors, but that could be a symptom of a bigger
  68. ;     problem.  Most notably, this will cause error messages about the use
  69. ;     of uninitialized variables to be displayed.
  70. ; - allow_call_time_pass_reference = Off     [Code cleanliness]
  71. ;     It's not possible to decide to force a variable to be passed by reference
  72. ;     when calling a function.  The PHP 4 style to do this is by making the
  73. ;     function require the relevant argument by reference.
  74.  
  75.  
  76. ;;;;;;;;;;;;;;;;;;;;
  77. ; Language Options ;
  78. ;;;;;;;;;;;;;;;;;;;;
  79.  
  80. ; Enable the PHP scripting language engine under Apache.
  81. engine = On
  82.  
  83. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  84. ; NOTE: Using short tags should be avoided when developing applications or
  85. ; libraries that are meant for redistribution, or deployment on PHP
  86. ; servers which are not under your control, because short tags may not
  87. ; be supported on the target server. For portable, redistributable code,
  88. ; be sure not to use short tags.
  89. short_open_tag = On
  90.  
  91. ; Allow ASP-style <% %> tags.
  92. asp_tags = On
  93.  
  94. ; The number of significant digits displayed in floating point numbers.
  95. precision    =  14
  96.  
  97. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  98. y2k_compliance = On
  99.  
  100. ; Output buffering allows you to send header lines (including cookies) even
  101. ; after you send body content, at the price of slowing PHP's output layer a
  102. ; bit.  You can enable output buffering during runtime by calling the output
  103. ; buffering functions.  You can also enable output buffering for all files by
  104. ; setting this directive to On.  If you wish to limit the size of the buffer
  105. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  106. ; a value for this directive (e.g., output_buffering=4096).
  107. output_buffering = 4096
  108.  
  109. ; You can redirect all of the output of your scripts to a function.  For
  110. ; example, if you set output_handler to "mb_output_handler", character
  111. ; encoding will be transparently converted to the specified encoding.
  112. ; Setting any output handler automatically turns on output buffering.
  113. ; Note: People who wrote portable scripts should not depend on this ini
  114. ;       directive. Instead, explicitly set the output handler using ob_start().
  115. ;       Using this ini directive may cause problems unless you know what script
  116. ;       is doing.
  117. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  118. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  119. ;output_handler =
  120.  
  121. ; Transparent output compression using the zlib library
  122. ; Valid values for this option are 'off', 'on', or a specific buffer size
  123. ; to be used for compression (default is 4KB)
  124. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  125. ;       outputs chunks that are few handreds bytes each as a result of compression.
  126. ;       If you want larger chunk size for better performence, enable output_buffering
  127. ;       also.
  128. ; Note: output_handler must be empty if this is set 'On' !!!!
  129. ;       Instead you must use zlib.output_handler.
  130. zlib.output_compression = Off
  131.  
  132. ; You cannot specify additional output handlers if zlib.output_compression
  133. ; is activated here. This setting does the same as output_handler but in
  134. ; a different order.
  135. ;zlib.output_handler =
  136.  
  137. ; Implicit flush tells PHP to tell the output layer to flush itself
  138. ; automatically after every output block.  This is equivalent to calling the
  139. ; PHP function flush() after each and every call to print() or echo() and each
  140. ; and every HTML block.  Turning this option on has serious performance
  141. ; implications and is generally recommended for debugging purposes only.
  142. implicit_flush = Off
  143.  
  144. ; The unserialize callback function will called (with the undefind class'
  145. ; name as parameter), if the unserializer finds an undefined class
  146. ; which should be instanciated.
  147. ; A warning appears if the specified function is not defined, or if the
  148. ; function doesn't include/implement the missing class.
  149. ; So only set this entry, if you really want to implement such a
  150. ; callback-function.
  151. unserialize_callback_func=
  152.  
  153. ; Whether to enable the ability to force arguments to be passed by reference
  154. ; at function call time.  This method is deprecated and is likely to be
  155. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  156. ; specifying which arguments should be passed by reference is in the function
  157. ; declaration.  You're encouraged to try and turn this option Off and make
  158. ; sure your scripts work properly with it in order to ensure they will work
  159. ; with future versions of the language (you will receive a warning each time
  160. ; you use this feature, and the argument will be passed by value instead of by
  161. ; reference).
  162. allow_call_time_pass_reference = On
  163.  
  164. ;
  165. ; Safe Mode
  166. ;
  167. safe_mode = Off
  168.  
  169. ; By default, Safe Mode does a UID compare check when
  170. ; opening files. If you want to relax this to a GID compare,
  171. ; then turn on safe_mode_gid.
  172. safe_mode_gid = Off
  173.  
  174. ; When safe_mode is on, UID/GID checks are bypassed when
  175. ; including files from this directory and its subdirectories.
  176. ; (directory must also be in include_path or full path must
  177. ; be used when including)
  178. safe_mode_include_dir =
  179.  
  180. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  181. ; will be allowed to be executed via the exec family of functions.
  182. safe_mode_exec_dir =
  183.  
  184. ; Setting certain environment variables may be a potential security breach.
  185. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  186. ; the user may only alter environment variables whose names begin with the
  187. ; prefixes supplied here.  By default, users will only be able to set
  188. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  189. ;
  190. ; Note:  If this directive is empty, PHP will let the user modify ANY
  191. ; environment variable!
  192. safe_mode_allowed_env_vars = PHP_
  193.  
  194. ; This directive contains a comma-delimited list of environment variables that
  195. ; the end user won't be able to change using putenv().  These variables will be
  196. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  197. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  198.  
  199. ; open_basedir, if set, limits all file operations to the defined directory
  200. ; and below.  This directive makes most sense if used in a per-directory
  201. ; or per-virtualhost web server configuration file. This directive is
  202. ; *NOT* affected by whether Safe Mode is turned On or Off.
  203. ;open_basedir =
  204.  
  205. ; This directive allows you to disable certain functions for security reasons.
  206. ; It receives a comma-delimited list of function names. This directive is
  207. ; *NOT* affected by whether Safe Mode is turned On or Off.
  208. disable_functions =
  209.  
  210. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  211. ; <font color="??????"> would work.
  212. ;highlight.string  = #DD0000
  213. ;highlight.comment = #FF9900
  214. ;highlight.keyword = #007700
  215. ;highlight.bg      = #FFFFFF
  216. ;highlight.default = #0000BB
  217. ;highlight.html    = #000000
  218.  
  219.  
  220. ;
  221. ; Misc
  222. ;
  223. ; Decides whether PHP may expose the fact that it is installed on the server
  224. ; (e.g. by adding its signature to the Web server header).  It is no security
  225. ; threat in any way, but it makes it possible to determine whether you use PHP
  226. ; on your server or not.
  227. expose_php = On
  228.  
  229.  
  230. ;;;;;;;;;;;;;;;;;;;
  231. ; Resource Limits ;
  232. ;;;;;;;;;;;;;;;;;;;
  233.  
  234. max_execution_time = 1200     ; Maximum execution time of each script, in seconds
  235. max_input_time = 60        ; Maximum amount of time each script may spend parsing request data
  236. memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
  237.  
  238.  
  239. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  240. ; Error handling and logging ;
  241. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  242.  
  243. ; error_reporting is a bit-field.  Or each number up to get desired error
  244. ; reporting level
  245. ; E_ALL             - All errors and warnings
  246. ; E_ERROR           - fatal run-time errors
  247. ; E_WARNING         - run-time warnings (non-fatal errors)
  248. ; E_PARSE           - compile-time parse errors
  249. ; E_NOTICE          - run-time notices (these are warnings which often result
  250. ;                     from a bug in your code, but it's possible that it was
  251. ;                     intentional (e.g., using an uninitialized variable and
  252. ;                     relying on the fact it's automatically initialized to an
  253. ;                     empty string)
  254. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  255. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  256. ;                     initial startup
  257. ; E_COMPILE_ERROR   - fatal compile-time errors
  258. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  259. ; E_USER_ERROR      - user-generated error message
  260. ; E_USER_WARNING    - user-generated warning message
  261. ; E_USER_NOTICE     - user-generated notice message
  262. ;
  263. ; Examples:
  264. ;
  265. ;   - Show all errors, except for notices
  266. ;
  267. ;error_reporting = E_ALL & ~E_NOTICE
  268. ;
  269. ;   - Show only errors
  270. ;
  271. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  272. ;
  273. ;   - Show all errors
  274. ;
  275. error_reporting  =  E_ALL & ~E_NOTICE
  276.  
  277. ; Print out errors (as a part of the output).  For production web sites,
  278. ; you're strongly encouraged to turn this feature off, and use error logging
  279. ; instead (see below).  Keeping display_errors enabled on a production web site
  280. ; may reveal security information to end users, such as file paths on your Web
  281. ; server, your database schema or other information.
  282. display_errors = On
  283.  
  284. ; Even when display_errors is on, errors that occur during PHP's startup
  285. ; sequence are not displayed.  It's strongly recommended to keep
  286. ; display_startup_errors off, except for when debugging.
  287. display_startup_errors = Off
  288.  
  289. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  290. ; As stated above, you're strongly advised to use error logging in place of
  291. ; error displaying on production web sites.
  292. log_errors = Off
  293.  
  294. ; Set maximum length of log_errors. In error_log information about the source is
  295. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  296. log_errors_max_len = 1024
  297.  
  298. ; Do not log repeated messages. Repeated errors must occur in same file on same
  299. ; line until ignore_repeated_source is set true.
  300. ignore_repeated_errors = Off
  301.  
  302. ; Ignore source of message when ignoring repeated messages. When this setting
  303. ; is On you will not log errors with repeated messages from different files or
  304. ; sourcelines.
  305. ignore_repeated_source = Off
  306.  
  307. ; If this parameter is set to Off, then memory leaks will not be shown (on
  308. ; stdout or in the log). This has only effect in a debug compile, and if
  309. ; error reporting includes E_WARNING in the allowed list
  310. report_memleaks = On
  311.  
  312. ; Store the last error/warning message in $php_errormsg (boolean).
  313. track_errors = Off
  314.  
  315. ; Disable the inclusion of HTML tags in error messages.
  316. html_errors = On
  317.  
  318. ; If html_errors is set On PHP produces clickable error messages that direct
  319. ; to a page describing the error or function causing the error in detail.
  320. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  321. ; and change docref_root to the base URL of your local copy including the
  322. ; leading '/'. You must also specify the file extension being used including
  323. ; the dot.
  324. ;docref_root = /phpmanual/
  325. ;docref_ext = .html
  326.  
  327. ; String to output before an error message.
  328. ;error_prepend_string = "<font color=ff0000>"
  329.  
  330. ; String to output after an error message.
  331. ;error_append_string = "</font>"
  332.  
  333. ; Log errors to specified file.
  334. ;error_log = \xampp\apache\logs\phperror.log
  335.  
  336. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  337. ;error_log = syslog
  338.  
  339.  
  340. ;;;;;;;;;;;;;;;;;
  341. ; Data Handling ;
  342. ;;;;;;;;;;;;;;;;;
  343. ;
  344. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  345.  
  346. ; The separator used in PHP generated URLs to separate arguments.
  347. ; Default is "&".
  348. ;arg_separator.output = "&"
  349.  
  350. ; List of separator(s) used by PHP to parse input URLs into variables.
  351. ; Default is "&".
  352. ; NOTE: Every character in this directive is considered as separator!
  353. ;arg_separator.input = ";&"
  354.  
  355. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  356. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  357. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  358. ; values override older values.
  359. variables_order = "GPCS"
  360.  
  361. ; Whether or not to register the EGPCS variables as global variables.  You may
  362. ; want to turn this off if you don't want to clutter your scripts' global scope
  363. ; with user data.  This makes most sense when coupled with track_vars - in which
  364. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  365. ; variables.
  366. ;
  367. ; You should do your best to write your scripts so that they do not require
  368. ; register_globals to be on;  Using form variables as globals can easily lead
  369. ; to possible security problems, if the code is not very well thought of.
  370. register_globals = On
  371.  
  372. ; This directive tells PHP whether to declare the argv&argc variables (that
  373. ; would contain the GET information).  If you don't use these variables, you
  374. ; should turn it off for increased performance.
  375. register_argc_argv = Off
  376.  
  377. ; Maximum size of POST data that PHP will accept.
  378. post_max_size = 16M
  379.  
  380. ; This directive is deprecated.  Use variables_order instead.
  381. gpc_order = "GPC"
  382.  
  383. ; Magic quotes
  384. ;
  385.  
  386. ; Magic quotes for incoming GET/POST/Cookie data.
  387. magic_quotes_gpc = On
  388.  
  389. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  390. magic_quotes_runtime = Off
  391.  
  392. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  393. magic_quotes_sybase = Off
  394.  
  395. ; Automatically add files before or after any PHP document.
  396. auto_prepend_file =
  397. auto_append_file =
  398.  
  399. ; As of 4.0b4, PHP always outputs a character encoding by default in
  400. ; the Content-type: header.  To disable sending of the charset, simply
  401. ; set it to be empty.
  402. ;
  403. ; PHP's built-in default is text/html
  404. default_mimetype = "text/html"
  405. ;default_charset = "iso-8859-1"
  406.  
  407. ; Always populate the $HTTP_RAW_POST_DATA variable.
  408. ;always_populate_raw_post_data = On
  409.  
  410. ; Allow handling of WebDAV http requests within PHP scripts (eg.
  411. ; PROPFIND, PROPPATCH, MOVE, COPY, etc..)
  412. ; If you want to get the post data of those requests, you have to
  413. ; set always_populate_raw_post_data as well.
  414. ;allow_webdav_methods = On
  415.  
  416. ;;;;;;;;;;;;;;;;;;;;;;;;;
  417. ; Paths and Directories ;
  418. ;;;;;;;;;;;;;;;;;;;;;;;;;
  419.  
  420. ; UNIX: "/path1:/path2"
  421. ;include_path = ".:/php/includes"
  422. ;
  423. ; Windows: "\path1;\path2"
  424. ; include_path = ".;c:\"
  425. include_path = ".;\xampp\php\pear\"
  426.  
  427. ; The root of the PHP pages, used only if nonempty.
  428. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  429. ; if you are running php as a CGI under any web server (other than IIS)
  430. ; see documentation for security issues.  The alternate is to use the
  431. ; cgi.force_redirect configuration below
  432. doc_root =
  433.  
  434. ; The directory under which PHP opens the script using /~usernamem used only
  435. ; if nonempty.
  436. user_dir =
  437.  
  438. ; Directory in which the loadable extensions (modules) reside. Since PHP 5 ext per default.
  439. extension_dir = \xampp\php\ext\
  440.  
  441.  
  442. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  443. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  444. ; disabled on them.
  445. enable_dl = On
  446.  
  447. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  448. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  449. ; turn it off here AT YOUR OWN RISK
  450. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  451. cgi.force_redirect = 1
  452.  
  453. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  454. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  455. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  456. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  457. ; cgi.redirect_status_env = ;
  458.  
  459. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  460. ; security tokens of the calling client.  This allows IIS to define the
  461. ; security context that the request runs under.  mod_fastcgi under Apache
  462. ; does not currently support this feature (03/17/2002)
  463. ; Set to 1 if running under IIS.  Default is zero.
  464. ; fastcgi.impersonate = 1;
  465.  
  466. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  467. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  468. ; is supported by Apache. When this option is set to 1 PHP will send
  469. ; RFC2616 compliant header.
  470. ; Set to 1 if running under IIS.  Default is zero.
  471. ;cgi.rfc2616_headers = 0
  472.  
  473.  
  474. ;;;;;;;;;;;;;;;;
  475. ; File Uploads ;
  476. ;;;;;;;;;;;;;;;;
  477.  
  478. ; Whether to allow HTTP file uploads.
  479. file_uploads = On
  480.  
  481. ; Temporary directory for HTTP uploaded files (will use system default if not
  482. ; specified).
  483. upload_tmp_dir = ".;\xampp\tmp"
  484.  
  485. ; Maximum allowed size for uploaded files.
  486. upload_max_filesize = 16M
  487.  
  488.  
  489. ;;;;;;;;;;;;;;;;;;
  490. ; Fopen wrappers ;
  491. ;;;;;;;;;;;;;;;;;;
  492.  
  493. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  494. allow_url_fopen = On
  495.  
  496. ; Define the anonymous ftp password (your email address)
  497. ; from="john@doe.com"
  498.  
  499. ; Define the user agent for php to send
  500. ;user_agent="PHP"
  501.  
  502. ; Default timeout for socket based streams (seconds)
  503. default_socket_timeout = 60
  504.  
  505. ; If your scripts have to deal with files from Macintosh systems,
  506. ; or you are running on a Mac and need to deal with files from
  507. ; unix or win32 systems, setting this flag will cause PHP to
  508. ; automatically detect the EOL character in those files so that
  509. ; fgets() and file() will work regardless of the source of the file.
  510. ; auto_detect_line_endings = Off
  511.  
  512.  
  513. ;;;;;;;;;;;;;;;;;;;;;;
  514. ; Dynamic Extensions ;
  515. ;;;;;;;;;;;;;;;;;;;;;;
  516. ;
  517. ; If you wish to have an extension loaded automatically, use the following
  518. ; syntax:
  519. ;
  520. ;   extension=modulename.extension
  521. ;
  522. ; For example, on Windows:
  523. ;
  524. ;   extension=msql.dll
  525. ;
  526. ; ... or under UNIX:
  527. ;
  528. ;   extension=msql.so
  529. ;
  530. ; Note that it should be the name of the module only; no directory information
  531. ; needs to go here.  Specify the location of the extension with the
  532. ; extension_dir directive above.
  533.  
  534.  
  535. ;Windows Extensions
  536. ;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
  537.  
  538.  
  539. ;extension=php_adt.dll
  540. ;extension=php_apd.dll
  541. ;extension=php_blenc.dll
  542. ;extension=php_bz2.dll
  543. ;extension=php_bz2_filter.dll
  544. ;extension=php_cpdf.dll
  545. ;extension=php_crack.dll
  546. ;extension=php_curl.dll
  547. ;extension=php_date.dll
  548. ;extension=php_db.dll
  549. ;extension=php_dba.dll
  550. ;extension=php_dbase.dll
  551. ;extension=php_dbx.dll
  552. ;extension=php_dio.dll
  553. ;extension=php_domxml.dll
  554. ;extension=php_exif.dll
  555. ;extension=php_fdf.dll
  556. ;extension=php_ffi.dll
  557. ;extension=php_filepro.dll
  558. ;extension=php_fribidi.dll
  559. extension=php_gd2.dll
  560. ;extension=php_gettext.dll
  561. ;extension=php_gopher.dll
  562. ;extension=php_hyperwave.dll
  563. ;extension=php_ifx.dll
  564. ;extension=php_iisfunc.dll
  565. ;extension=php_imagick.dll
  566. ;extension=php_imap.dll
  567. ;extension=php_interbase.dll
  568. ;extension=php_ldap.dll
  569. ;extension=php_mailparse.dll
  570. extension=php_mbstring.dll
  571. ;extension=php_mcrypt.dll
  572. ;extension=php_memcache.dll
  573. ;extension=php_mhash.dll
  574. ;extension=php_mime_magic.dll
  575. extension=php_ming.dll
  576. extension=php_mssql.dll
  577. ;extension=php_msql.dll
  578. extension=php_mysql.dll
  579. ;extension=php_netools.dll
  580. ;extension=php_ntuser.dll
  581. ;extension=php_oci8.dll
  582. ;extension=php_oggvorbis.dll
  583. extension=php_openssl.dll
  584. ;extension=php_oracle.dll
  585. extension=php_pdf.dll
  586. ;extension=libpdf_php.dll ;Third Party www.pdflib.com
  587. ;extension=php_pdo.dll
  588. ;extension=php_pdo_firebird.dll
  589. ;extension=php_pdo_mysql.dll
  590. ;extension=php_pdo_oci.dll
  591. ;extension=php_pdo_odbc.dll
  592. ;extension=php_pdo_pgsql.dll
  593. ;extension=php_perl.dll
  594. ;extension=php_pgsql.dll
  595. ;extension=php_phpdoc.dll
  596. ;extension=php_pop3.dll
  597. ;extension=php_printer.dll
  598. ;extension=php_radius.dll
  599. ;extension=php_rar.dll
  600. ;extension=php_shmop.dll
  601. ;extension=php_snmp.dll
  602. ;extension=php_soap.dll
  603. ;extension=php_sockets.dll
  604. ;extension=php_stats.dll
  605. ;extension=php_sybase_ct.dll
  606. ;extension=php_threads.dll
  607. ;extension=php_tidy.dll
  608. ;extension=php_win32std.dll
  609. ;extension=php_xdebug.dll
  610. ;extension=php_xmlreader.dll
  611. ;extension=php_xmlrpc.dll
  612. extension=php_xsl.dll
  613. ;extension=php_yaz.dll
  614. extension=php_zip.dll
  615. ;extension=php_zlib_filter.dll
  616.  
  617.  
  618. ;;;;;;;;;;;;;;;;;;;
  619. ; Module Settings ;
  620. ;;;;;;;;;;;;;;;;;;;
  621.  
  622. [Syslog]
  623. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  624. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  625. ; runtime, you can define these variables by calling define_syslog_variables().
  626. define_syslog_variables  = Off
  627.  
  628. [mail function]
  629. ; For Win32 only.
  630. SMTP = localhost
  631.  
  632. ; For Win32 only.
  633. sendmail_from = postmaster@localhost
  634.  
  635. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  636. ;sendmail_path =
  637.  
  638. [Java]
  639. ;java.class.path = .\php_java.jar
  640. ;java.home = c:\jdk
  641. ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll
  642. ;java.library.path = .\
  643.  
  644. [SQL]
  645. sql.safe_mode = Off
  646.  
  647. [ODBC]
  648. ;odbc.default_db    =  Not yet implemented
  649. ;odbc.default_user  =  Not yet implemented
  650. ;odbc.default_pw    =  Not yet implemented
  651.  
  652. ; Allow or prevent persistent links.
  653. odbc.allow_persistent = On
  654.  
  655. ; Check that a connection is still valid before reuse.
  656. odbc.check_persistent = On
  657.  
  658. ; Maximum number of persistent links.  -1 means no limit.
  659. odbc.max_persistent = -1
  660.  
  661. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  662. odbc.max_links = -1
  663.  
  664. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  665. ; passthru.
  666. odbc.defaultlrl = 4096
  667.  
  668. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  669. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  670. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  671. odbc.defaultbinmode = 1
  672.  
  673. [MySQL]
  674. ; Allow or prevent persistent links.
  675. mysql.allow_persistent = On
  676.  
  677. ; Maximum number of persistent links.  -1 means no limit.
  678. mysql.max_persistent = -1
  679.  
  680. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  681. mysql.max_links = -1
  682.  
  683. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  684. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  685. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  686. ; at MYSQL_PORT.
  687. mysql.default_port =
  688.  
  689. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  690. ; MySQL defaults.
  691. mysql.default_socket =
  692.  
  693. ; Default host for mysql_connect() (doesn't apply in safe mode).
  694. mysql.default_host =
  695.  
  696. ; Default user for mysql_connect() (doesn't apply in safe mode).
  697. mysql.default_user =
  698.  
  699. ; Default password for mysql_connect() (doesn't apply in safe mode).
  700. ; Note that this is generally a *bad* idea to store passwords in this file.
  701. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  702. ; and reveal this password!  And of course, any users with read access to this
  703. ; file will be able to reveal the password as well.
  704. mysql.default_password =
  705.  
  706. ; Maximum time (in secondes) for connect timeout. -1 means no limimt
  707. mysql.connect_timeout = -1
  708.  
  709. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  710. ; SQL-Erros will be displayed.
  711. mysql.trace_mode = Off
  712.  
  713. [MySQLI]
  714.  
  715. ; Maximum number of links.  -1 means no limit.
  716. mysqli.max_links = -1
  717.  
  718. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  719. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  720. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  721. ; at MYSQL_PORT.
  722. mysqli.default_port = 3306
  723.  
  724. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  725. ; MySQL defaults.
  726. mysqli.default_socket =
  727.  
  728. ; Default host for mysql_connect() (doesn't apply in safe mode).
  729. mysqli.default_host =
  730.  
  731. ; Default user for mysql_connect() (doesn't apply in safe mode).
  732. mysqli.default_user =
  733.  
  734. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  735. ; Note that this is generally a *bad* idea to store passwords in this file.
  736. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_password")
  737. ; and reveal this password!  And of course, any users with read access to this
  738. ; file will be able to reveal the password as well.
  739. mysqli.default_password =
  740.  
  741. ; Allow or prevent reconnect
  742. mysqli.reconnect = Off
  743.  
  744. [mSQL]
  745. ; Allow or prevent persistent links.
  746. msql.allow_persistent = On
  747.  
  748. ; Maximum number of persistent links.  -1 means no limit.
  749. msql.max_persistent = -1
  750.  
  751. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  752. msql.max_links = -1
  753.  
  754. [PostgresSQL]
  755. ; Allow or prevent persistent links.
  756. pgsql.allow_persistent = On
  757.  
  758. ; Detect broken persistent links always with pg_pconnect().
  759. ; Auto reset feature requires a little overheads.
  760. pgsql.auto_reset_persistent = Off
  761.  
  762. ; Maximum number of persistent links.  -1 means no limit.
  763. pgsql.max_persistent = -1
  764.  
  765. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  766. pgsql.max_links = -1
  767.  
  768. ; Ignore PostgreSQL backends Notice message or not.
  769. ; Notice message logging require a little overheads.
  770. pgsql.ignore_notice = 0
  771.  
  772. ; Log PostgreSQL backends Noitce message or not.
  773. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  774. pgsql.log_notice = 0
  775.  
  776. [Sybase]
  777. ; Allow or prevent persistent links.
  778. sybase.allow_persistent = On
  779.  
  780. ; Maximum number of persistent links.  -1 means no limit.
  781. sybase.max_persistent = -1
  782.  
  783. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  784. sybase.max_links = -1
  785.  
  786. ;sybase.interface_file = "/usr/sybase/interfaces"
  787.  
  788. ; Minimum error severity to display.
  789. sybase.min_error_severity = 10
  790.  
  791. ; Minimum message severity to display.
  792. sybase.min_message_severity = 10
  793.  
  794. ; Compatability mode with old versions of PHP 3.0.
  795. ; If on, this will cause PHP to automatically assign types to results according
  796. ; to their Sybase type, instead of treating them all as strings.  This
  797. ; compatability mode will probably not stay around forever, so try applying
  798. ; whatever necessary changes to your code, and turn it off.
  799. sybase.compatability_mode = Off
  800.  
  801. [Sybase-CT]
  802. ; Allow or prevent persistent links.
  803. sybct.allow_persistent = On
  804.  
  805. ; Maximum number of persistent links.  -1 means no limit.
  806. sybct.max_persistent = -1
  807.  
  808. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  809. sybct.max_links = -1
  810.  
  811. ; Minimum server message severity to display.
  812. sybct.min_server_severity = 10
  813.  
  814. ; Minimum client message severity to display.
  815. sybct.min_client_severity = 10
  816.  
  817. [dbx]
  818. ; returned column names can be converted for compatibility reasons
  819. ; possible values for dbx.colnames_case are
  820. ; "unchanged" (default, if not set)
  821. ; "lowercase"
  822. ; "uppercase"
  823. ; the recommended default is either upper- or lowercase, but
  824. ; unchanged is currently set for backwards compatibility
  825. dbx.colnames_case = "lowercase"
  826.  
  827. [bcmath]
  828. ; Number of decimal digits for all bcmath functions.
  829. bcmath.scale = 0
  830.  
  831. [browscap]
  832. browscap = \xampp\php\browscap\browscap.ini
  833.  
  834. [Informix]
  835. ; Default host for ifx_connect() (doesn't apply in safe mode).
  836. ifx.default_host =
  837.  
  838. ; Default user for ifx_connect() (doesn't apply in safe mode).
  839. ifx.default_user =
  840.  
  841. ; Default password for ifx_connect() (doesn't apply in safe mode).
  842. ifx.default_password =
  843.  
  844. ; Allow or prevent persistent links.
  845. ifx.allow_persistent = On
  846.  
  847. ; Maximum number of persistent links.  -1 means no limit.
  848. ifx.max_persistent = -1
  849.  
  850. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  851. ifx.max_links = -1
  852.  
  853. ; If on, select statements return the contents of a text blob instead of its id.
  854. ifx.textasvarchar = 0
  855.  
  856. ; If on, select statements return the contents of a byte blob instead of its id.
  857. ifx.byteasvarchar = 0
  858.  
  859. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  860. ; life of Informix SE users.
  861. ifx.charasvarchar = 0
  862.  
  863. ; If on, the contents of text and byte blobs are dumped to a file instead of
  864. ; keeping them in memory.
  865. ifx.blobinfile = 0
  866.  
  867. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  868. ; NULL's are returned as string 'NULL'.
  869. ifx.nullformat = 0
  870.  
  871. [Session]
  872. ; Handler used to store/retrieve data.
  873. session.save_handler = files
  874.  
  875. ; Argument passed to save_handler.  In the case of files, this is the path
  876. ; where data files are stored. Note: Windows users have to change this
  877. ; variable in order to use PHP's session functions.
  878. session.save_path= ".;\xampp\tmp"
  879.  
  880. ; Whether to use cookies.
  881. session.use_cookies = 1
  882.  
  883. ; This option enables administrators to make their users invulnerable to
  884. ; attacks which involve passing session ids in URLs; defaults to 0.
  885. ; session.use_only_cookies = 1
  886.  
  887. ; Name of the session (used as cookie name).
  888. session.name = PHPSESSID
  889.  
  890. ; Initialize session on request startup.
  891. session.auto_start = 0
  892.  
  893. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  894. session.cookie_lifetime = 0
  895.  
  896. ; The path for which the cookie is valid.
  897. session.cookie_path = /
  898.  
  899. ; The domain for which the cookie is valid.
  900. session.cookie_domain =
  901.  
  902. ; Handler used to serialize data.  php is the standard serializer of PHP.
  903. session.serialize_handler = php
  904.  
  905. ; Define the probability that the 'garbage collection' process is started
  906. ; on every session initialization.
  907. ; The probability is calculated by using gc_probability/gc_dividend,
  908. ; e.g. 1/100 means 1%.
  909.  
  910. session.gc_probability = 1
  911. session.gc_dividend    = 1000
  912.  
  913. ; After this number of seconds, stored data will be seen as 'garbage' and
  914. ; cleaned up by the garbage collection process.
  915. session.gc_maxlifetime = 1440
  916.  
  917. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  918. ; to initialize a session variable in the global scope, albeit register_globals
  919. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  920. ; You can disable the feature and the warning seperately. At this time,
  921. ; the warning is only displayed, if bug_compat_42 is enabled.
  922.  
  923. session.bug_compat_42 = 0
  924. session.bug_compat_warn = 1
  925.  
  926. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  927. ; HTTP_REFERER has to contain this substring for the session to be
  928. ; considered as valid.
  929. session.referer_check =
  930.  
  931. ; How many bytes to read from the file.
  932. session.entropy_length = 0
  933.  
  934. ; Specified here to create the session id.
  935. session.entropy_file =
  936.  
  937. ;session.entropy_length = 16
  938.  
  939. ;session.entropy_file = /dev/urandom
  940.  
  941. ; Set to {nocache,private,public,} to determine HTTP caching aspects.
  942. ; or leave this empty to avoid sending anti-caching headers.
  943. session.cache_limiter = nocache
  944.  
  945. ; Document expires after n minutes.
  946. session.cache_expire = 180
  947.  
  948. ; trans sid support is disabled by default.
  949. ; Use of trans sid may risk your users security.
  950. ; Use this option with caution.
  951. ; - User may send URL contains active session ID
  952. ;   to other person via. email/irc/etc.
  953. ; - URL that contains active session ID may be stored
  954. ;   in publically accessible computer.
  955. ; - User may access your site with the same session ID
  956. ;   always using URL stored in browser's history or bookmarks.
  957. session.use_trans_sid = 0
  958.  
  959. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  960. ; form/fieldset are special; if you include them here, the rewriter will
  961. ; add a hidden <input> field with the info which is otherwise appended
  962. ; to URLs.  If you want XHTML conformity, remove the form entry.
  963. ; Note that all valid entries require a "=", even if no value follows.
  964. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  965.  
  966. ; Select a hash function
  967. ; 0: MD5   (128 bits)
  968. ; 1: SHA-1 (160 bits)
  969. session.hash_function = 0
  970.  
  971. ; Define how many bits are stored in each character when converting
  972. ; the binary hash data to something readable.
  973. ;
  974. ; 4 bits: 0-9, a-f
  975. ; 5 bits: 0-9, a-v
  976. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  977. session.hash_bits_per_character = 4
  978.  
  979. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  980. ; form/fieldset are special; if you include them here, the rewriter will
  981. ; add a hidden <input> field with the info which is otherwise appended
  982. ; to URLs.  If you want XHTML conformity, remove the form entry.
  983. ; Note that all valid entries require a "=", even if no value follows.
  984. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
  985.  
  986. [MSSQL]
  987. ; Allow or prevent persistent links.
  988. mssql.allow_persistent = On
  989.  
  990. ; Maximum number of persistent links.  -1 means no limit.
  991. mssql.max_persistent = -1
  992.  
  993. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  994. mssql.max_links = -1
  995.  
  996. ; Minimum error severity to display.
  997. mssql.min_error_severity = 10
  998.  
  999. ; Minimum message severity to display.
  1000. mssql.min_message_severity = 10
  1001.  
  1002. ; Compatability mode with old versions of PHP 3.0.
  1003. mssql.compatability_mode = Off
  1004.  
  1005. ; Valid range 0 - 2147483647.  Default = 4096.
  1006. ;mssql.textlimit = 4096
  1007.  
  1008. ; Valid range 0 - 2147483647.  Default = 4096.
  1009. ;mssql.textsize = 4096
  1010.  
  1011. ; Limits the number of records in each batch.  0 = all records in one batch.
  1012. ;mssql.batchsize = 0
  1013.  
  1014. ; Use NT authentication when connecting to the server
  1015. mssql.secure_connection = Off
  1016.  
  1017. ; Specify max number of processes. Default = 25
  1018. ;mssql.max_procs = 25
  1019.  
  1020. [Assertion]
  1021. ; Assert(expr); active by default.
  1022. ;assert.active = On
  1023.  
  1024. ; Issue a PHP warning for each failed assertion.
  1025. ;assert.warning = On
  1026.  
  1027. ; Don't bail out by default.
  1028. ;assert.bail = Off
  1029.  
  1030. ; User-function to be called if an assertion fails.
  1031. ;assert.callback = 0
  1032.  
  1033. ; Eval the expression with current error_reporting().  Set to true if you want
  1034. ; error_reporting(0) around the eval().
  1035. ;assert.quiet_eval = 0
  1036.  
  1037. [Ingres II]
  1038. ; Allow or prevent persistent links.
  1039. ingres.allow_persistent = On
  1040.  
  1041. ; Maximum number of persistent links.  -1 means no limit.
  1042. ingres.max_persistent = -1
  1043.  
  1044. ; Maximum number of links, including persistents.  -1 means no limit.
  1045. ingres.max_links = -1
  1046.  
  1047. ; Default database (format: [node_id::]dbname[/srv_class]).
  1048. ingres.default_database =
  1049.  
  1050. ; Default user.
  1051. ingres.default_user =
  1052.  
  1053. ; Default password.
  1054. ingres.default_password =
  1055.  
  1056. [Verisign Payflow Pro]
  1057. ; Default Payflow Pro server.
  1058. pfpro.defaulthost = "test-payflow.verisign.com"
  1059.  
  1060. ; Default port to connect to.
  1061. pfpro.defaultport = 443
  1062.  
  1063. ; Default timeout in seconds.
  1064. pfpro.defaulttimeout = 30
  1065.  
  1066. ; Default proxy IP address (if required).
  1067. ;pfpro.proxyaddress =
  1068.  
  1069. ; Default proxy port.
  1070. ;pfpro.proxyport =
  1071.  
  1072. ; Default proxy logon.
  1073. ;pfpro.proxylogon =
  1074.  
  1075. ; Default proxy password.
  1076. ;pfpro.proxypassword =
  1077.  
  1078. [Sockets]
  1079. ; Use the system read() function instead of the php_read() wrapper.
  1080. sockets.use_system_read = On
  1081.  
  1082. [com]
  1083. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1084. ;com.typelib_file =
  1085. ; allow Distributed-COM calls
  1086. ;com.allow_dcom = true
  1087. ; autoregister constants of a components typlib on com_load()
  1088. ;com.autoregister_typelib = true
  1089. ; register constants casesensitive
  1090. ;com.autoregister_casesensitive = false
  1091. ; show warnings on duplicate constat registrations
  1092. ;com.autoregister_verbose = true
  1093.  
  1094. [Printer]
  1095. ;printer.default_printer = ""
  1096.  
  1097. [mbstring]
  1098. ; language for internal character representation.
  1099. ;mbstring.language = Japanese
  1100.  
  1101. ; internal/script encoding.
  1102. ; Some encoding cannot work as internal encoding.
  1103. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1104. ;mbstring.internal_encoding = EUC-JP
  1105.  
  1106. ; http input encoding.
  1107. ;mbstring.http_input = auto
  1108.  
  1109. ; http output encoding. mb_output_handler must be
  1110. ; registered as output buffer to function
  1111. ;mbstring.http_output = SJIS
  1112.  
  1113. ; enable automatic encoding translation accoding to
  1114. ; mbstring.internal_encoding setting. Input chars are
  1115. ; converted to internal encoding by setting this to On.
  1116. ; Note: Do _not_ use automatic encoding translation for
  1117. ;       portable libs/applications.
  1118. ;mbstring.encoding_translation = Off
  1119.  
  1120. ; automatic encoding detection order.
  1121. ; auto means
  1122. ;mbstring.detect_order = auto
  1123.  
  1124. ; substitute_character used when character cannot be converted
  1125. ; one from another
  1126. ;mbstring.substitute_character = none;
  1127.  
  1128. ; overload(replace) single byte functions by mbstring functions.
  1129. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1130. ; etc. Possible values are 0,1,2,4 or combination of them.
  1131. ; For example, 7 for overload everything.
  1132. ; 0: No overload
  1133. ; 1: Overload mail() function
  1134. ; 2: Overload str*() functions
  1135. ; 4: Overload ereg*() functions
  1136. ;mbstring.func_overload = 0
  1137.  
  1138. [FrontBase]
  1139. ;fbsql.allow_persistent = On
  1140. ;fbsql.autocommit = On
  1141. ;fbsql.default_database =
  1142. ;fbsql.default_database_password =
  1143. ;fbsql.default_host =
  1144. ;fbsql.default_password =
  1145. ;fbsql.default_user = "_SYSTEM"
  1146. ;fbsql.generate_warnings = Off
  1147. ;fbsql.max_connections = 128
  1148. ;fbsql.max_links = 128
  1149. ;fbsql.max_persistent = -1
  1150. ;fbsql.max_results = 128
  1151. ;fbsql.batchSize = 1000
  1152.  
  1153. [Crack]
  1154. ; Modify the setting below to match the directory location of the cracklib
  1155. ; dictionary files.  Include the base filename, but not the file extension.
  1156. ; crack.default_dictionary = "c:\php\lib\cracklib_dict"
  1157.  
  1158. [exif]
  1159. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1160. ; With mbstring support this will automatically be converted into the encoding
  1161. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1162. ; is used. For the decode settings you can distinguish between motorola and
  1163. ; intel byte order. A decode setting cannot be empty.
  1164. ;exif.encode_unicode = ISO-8859-15
  1165. ;exif.decode_unicode_motorola = UCS-2BE
  1166. ;exif.decode_unicode_intel    = UCS-2LE
  1167. ;exif.encode_jis =
  1168. ;exif.decode_jis_motorola = JIS
  1169. ;exif.decode_jis_intel    = JIS
  1170.  
  1171. ; Local Variables:
  1172. ; tab-width: 4
  1173. ; End:
  1174.  
  1175. [Tidy]
  1176. ; The path to a default tidy configuration file to use when using tidy
  1177. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1178.  
  1179. ; Should tidy clean and repair output automatically?
  1180. ; WARNING: Do not use this option if you are generating non-html content
  1181. ; such as dynamic images
  1182. tidy.clean_output = Off
  1183.  
  1184. [soap]
  1185. ; Enables or disables WSDL caching feature.
  1186. soap.wsdl_cache_enabled=1
  1187. ; Sets the directory name where SOAP extension will put cache files.
  1188. soap.wsdl_cache_dir="/tmp"
  1189. ; (time to live) Sets the number of second while cached file will be used 
  1190. ; instead of original one.
  1191. soap.wsdl_cache_ttl=86400
  1192.  
  1193. ; Local Variables:
  1194. ; tab-width: 4
  1195. ; End:
  1196.  
  1197. [Zend]
  1198. ;zend_optimizer.enable_loader = 0
  1199. ;zend_optimizer.optimization_level=1023
  1200. ;zend_extension="\xampp\php\zendOptimizer\lib\Optimizer\php-5.0.x\ZendOptimizer.dll"
  1201. ;zend_extension_ts="\xampp\php\zendOptimizer\lib\ZendExtensionManager.dll"
  1202. ;zend_extension_manager.optimizer_ts="\xampp\php\zendOptimizer\lib\Optimizer"
  1203. ;zend_optimizer.license_path="\xampp\licenses\zendOptimizer\license.txt"
  1204.  
  1205. [eAccelerator]
  1206. ;extension=eaccelerator.dll
  1207. ;eaccelerator.shm_size = "0"
  1208. ;eaccelerator.cache_dir = "\xampp\tmp"
  1209. ;eaccelerator.enable = "1"
  1210. ;eaccelerator.optimizer = "1"
  1211. ;eaccelerator.check_mtime = "1"